Quickhull2

class Quickhull2<V : Vector2<V>>(input: Collection<V>) : ConvexHull<V> (source)

Quickhull algorithm for computing the convex hull of a collection of 2D points.

Constructors

Link copied to clipboard
constructor(input: Collection<V>)

initializes the algorithm with a collection of points.

Types

Link copied to clipboard

Functions

Link copied to clipboard
open override fun execute(): Result<V>

Execute the algorithm and returns the output.